Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633452 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/68 - Movie TV Series Quote Generator

style.css cody/swapnilsparsh/30DaysOfJavaScript/68 - Movie TV Series Quote Generator/style.css
122 Views
0 Comments
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
display: flex;
index.html cody/swapnilsparsh/30DaysOfJavaScript/68 - Movie TV Series Quote Generator/index.html
338 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Random Movie/TV Series Quote Generator</title>
<link rel="stylesheet" href="style.css">
script.js cody/swapnilsparsh/30DaysOfJavaScript/68 - Movie TV Series Quote Generator/script.js
131 Views
0 Comments
const getNextQuote = async() =>
{
var url = "https://raw.githubusercontent.com/msramalho/json-tv-quotes/master/quotes.json";
const response = await fetch(url);
const totalQuotes = await response.json();
const index = Math.floor(Math.random()*totalQuotes.length);
const quo=totalQuotes[index].quote;
const auth=totalQuotes[index].author;